home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-24 | 2.7 KB | 104 lines | [TEXT/MPS ] |
- ;
- ; File: FileTransferTools.a
- ;
- ; Contains: CommToolbox File Transfer Tools Interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Package: Universal Interfaces 2.2 in “MPW” on ETO #20
- ;
- ; Copyright: © 1984-1995 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Bugs?: If you find a problem with this file, use the Apple Bug Reporter
- ; stack. Include the file and version information (from above)
- ; in the problem description and send to:
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__FILETRANSFERTOOLS__') = 'UNDEFINED' THEN
- __FILETRANSFERTOOLS__ SET 1
-
-
- IF &TYPE('__DIALOGS__') = 'UNDEFINED' THEN
- include 'Dialogs.a'
- ENDIF
- ; include 'Errors.a' ;
- ; include 'ConditionalMacros.a' ;
- ; include 'Memory.a' ;
- ; include 'Types.a' ;
- ; include 'MixedMode.a' ;
- ; include 'Menus.a' ;
- ; include 'Quickdraw.a' ;
- ; include 'QuickdrawText.a' ;
- ; include 'Controls.a' ;
- ; include 'Windows.a' ;
- ; include 'Events.a' ;
- ; include 'OSUtils.a' ;
- ; include 'TextEdit.a' ;
-
- IF &TYPE('__FILETRANSFERS__') = 'UNDEFINED' THEN
- include 'FileTransfers.a'
- ENDIF
- ; include 'CTBUtilities.a' ;
- ; include 'StandardFile.a' ;
- ; include 'Files.a' ;
- ; include 'Finder.a' ;
- ; include 'AppleTalk.a' ;
- ; include 'Connections.a' ;
- ; include 'Terminals.a' ;
-
- ; DEFs
- fdefType EQU 'fdef'
- fsetType EQU 'fset'
- fvalType EQU 'fval'
- flocType EQU 'floc'
- fscrType EQU 'fscr'
- fbndType EQU 'fbnd'
- fverType EQU 'vers'
-
- ; control
- ftInitMsg EQU 0
- ftDisposeMsg EQU 1
- ftSuspendMsg EQU 2
- ftResumeMsg EQU 3
- ftMenuMsg EQU 4
- ftEventMsg EQU 5
- ftActivateMsg EQU 6
- ftDeactivateMsg EQU 7
- ftGetErrorStringMsg EQU 8
- ftAbortMsg EQU 52
- ftStartMsg EQU 100
- ftExecMsg EQU 102
- ftSendMsg EQU 103
- ftReceiveMsg EQU 104
- ; setup
- ftSpreflightMsg EQU 0
- ftSsetupMsg EQU 1
- ftSitemMsg EQU 2
- ftSfilterMsg EQU 3
- ftScleanupMsg EQU 4
- ; validate
- ftValidateMsg EQU 0
-
- ftDefaultMsg EQU 1
- ; scripting
- ftMgetMsg EQU 0
- ftMsetMsg EQU 1
- ; localization
- ftL2English EQU 0
- ftL2Intl EQU 1
-
- FTSetupStruct RECORD 0
- theDialog ds.l 1 ; offset: $0 (0) ; the dialog form the application
- count ds.w 1 ; offset: $4 (4) ; first appended item
- theConfig ds.l 1 ; offset: $6 (6) ; the config record to setup
- procID ds.w 1 ; offset: $A (10) ; procID of the tool
- sizeof EQU * ; size: $C (12)
- ENDR
-
- ; typedef struct FTSetupStruct FTSetupStruct
- ; typedef FTSetupStruct *FTSetupPtr
- ENDIF ; __FILETRANSFERTOOLS__
-